go/types.tparamsList.indices (field)

15 uses

	go/types (current package)
		unify.go#L103: 	indices []int // len(d.indices) == len(d.tparams)
		unify.go#L136: 	d.indices = make([]int, len(tparams))
		unify.go#L146: 	ti := u.x.indices[i]
		unify.go#L147: 	tj := u.y.indices[j]
		unify.go#L153: 		u.x.indices[i] = -len(u.types)
		unify.go#L154: 		u.y.indices[j] = -len(u.types)
		unify.go#L157: 		u.x.indices[i] = tj
		unify.go#L160: 		u.y.indices[j] = ti
		unify.go#L213: 	ti := d.indices[i]
		unify.go#L215: 	for k, tk := range d.indices {
		unify.go#L217: 			d.indices[k] = tj
		unify.go#L224: 	if ti := d.indices[i]; ti > 0 {
		unify.go#L238: 	switch ti := d.indices[i]; {
		unify.go#L244: 		d.indices[i] = len(u.types)
		unify.go#L253: 	for _, ti := range d.indices {